home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 42 / Amiga Format AFCD42 (Issue 126, Aug 1999).iso / -serious- / programming / other / wild / include / clvo / lightmodule_lib.h < prev    next >
C/C++ Source or Header  |  1999-05-25  |  2KB  |  64 lines

  1. #include <exec/types.h>
  2. #include <gcc/compiler.h>
  3.  
  4. #ifdef __GNUC__
  5. #define USE_TAGS_STUBS
  6. #endif
  7.  
  8. extern ULONG CallModulePPCc(LONG offset,struct WildModule *BASE,ASMREG(LONG,d0arg,d0),ASMREG(LONG,d1arg,d1),ASMREG(LONG,*a0arg,a0),ASMREG(LONG,*a1arg,a1));
  9.  
  10. #ifndef _LVOSetModuleTags    
  11. #define _LVOSetModuleTags            -30
  12. #define SetModuleTags(A0,A1) \
  13. CallModulePPCc(_LVOSetModuleTags,LightModuleBase,0,0,((LONG *)A0),((LONG *)A1))
  14. #ifdef USE_TAGS_STUBS
  15. #define SetModuleTagsTags(A0,tags... ) \
  16. ({ULONG _t[]={tags}; \
  17. SetModuleTags(A0,(APTR)_t); \
  18. })
  19. #endif
  20. #endif
  21.  
  22. #ifndef _LVOGetModuleTags    
  23. #define _LVOGetModuleTags            -36
  24. #define GetModuleTags(A0,A1) \
  25. CallModulePPCc(_LVOGetModuleTags,LightModuleBase,0,0,((LONG *)A0),((LONG *)A1))
  26. #ifdef USE_TAGS_STUBS
  27. #define GetModuleTagsTags(A0,tags... ) \
  28. ({ULONG _t[]={tags}; \
  29. GetModuleTags(A0,(APTR)_t); \
  30. })
  31. #endif
  32. #endif
  33.  
  34. #ifndef _LVOSetupModule    
  35. #define _LVOSetupModule            -42
  36. #define SetupModule(A0,A1) \
  37. CallModulePPCc(_LVOSetupModule,LightModuleBase,0,0,((LONG *)A0),((LONG *)A1))
  38. #ifdef USE_TAGS_STUBS
  39. #define SetupModuleTags(A0,tags... ) \
  40. ({ULONG _t[]={tags}; \
  41. SetupModule(A0,(APTR)_t); \
  42. })
  43. #endif
  44. #endif
  45.  
  46. #ifndef _LVOCloseModule    
  47. #define _LVOCloseModule            -48
  48. #define CloseModule(A0) \
  49. CallModulePPCc(_LVOCloseModule,LightModuleBase,0,0,((LONG *)A0),0)
  50. #endif
  51.  
  52. #ifndef _LVORefreshModule    
  53. #define _LVORefreshModule            -54
  54. #define RefreshModule(A0) \
  55. CallModulePPCc(_LVORefreshModule,LightModuleBase,0,0,((LONG *)A0),0)
  56. #endif
  57.  
  58. #ifndef _LVOLIGIlluminate    
  59. #define _LVOLIGIlluminate            -60
  60. #define LIGIlluminate(A0,A1) \
  61. CallModulePPCc(_LVOLIGIlluminate,LightModuleBase,0,0,((LONG *)A0),((LONG *)A1))
  62. #endif
  63.  
  64.